#this code is just to load the necessary libraries
import plotly.graph_objects as go
#load saved data
import pickle
#load downloaded data
import pickle
with open('../plotlyfigs/fracture-toughness.pickle','rb') as f:
fig = pickle.load(f)
#plot all
for t in fig:
test = go.Figure(t)
test.show(config={"showLink": True},renderer="notebook")